home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000142_news@columbia.edu _Mon Mar 4 23:10:53 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id XAA15850 for <kermit.misc@watsun>; Mon, 4 Mar 1996 23:10:52 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id XAA08445 for kermit.misc@watsun; Mon, 4 Mar 1996 23:10:50 -0500 (EST)
  4. Path: news.columbia.edu!panix!imci5!imci4!newsfeed.internetmci.com!tank.news.pipex.net!pipex!oleane!calvacom!newsmaster
  5. From: do11@calvacom.fr (Dominique Ottello)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Get transfer window frozen without exit
  8. Date: Mon, 04 Mar 1996 16:49:31 GMT
  9. Organization: CalvaCom Networks
  10. Lines: 68
  11. Message-ID: <313b1dda.1430192@news.calvacom.fr>
  12. Reply-To: do11@calvacom.fr
  13. NNTP-Posting-Host: par10.calvacom.fr
  14. X-Newsreader: Forte Agent .99d/16.182
  15.  
  16. Hello from France.
  17.  
  18. I use MS-DOS Kermit 3.14 on a PC without any patch.
  19.  
  20. Here after are the Transfer macro I use and the setting values in
  21. Mskermit.ini.
  22.  
  23. Sometimes (about 1% of cases) the transfer (get) window is frozen,
  24. with only the retry
  25. counter activity. Retry is set to 50 but the counter overpass this
  26. value and there is no exit from the get command.
  27.  
  28. The calls of transfer are always the same :
  29.   transfer 0100.KERMIT.DIRTXT.SA dirtxt.txt
  30. the file 0100.KERMIT.DIRTXT.SA always exist.
  31.  
  32. Is there any possibility to time-out the get command ?
  33.  
  34. Why the retry counter overpass the setting value ?
  35.  
  36. Sincerely.
  37.  
  38.   -+- Transfer Macro -+-
  39.  
  40. define transfer define Trans_OK Oui,set input echo off,-
  41. output {TRANSFER\13K\13K\13},input 60 {then reconnect},-
  42. if failure define Trans_OK Non,-
  43. pause 2,get, \%1, \%2,-
  44. if failure define Trans_OK Non,-
  45. pause 2,finish,output Q\13,input =,pause 2,set input echo on
  46.  
  47.   -+-  Mskermit.ini -+-
  48.  
  49. set take echo off
  50. set com3 \x280 10
  51. set port 3
  52. set speed 38400
  53. set flow-control RTS/CTS
  54. set transfer character-set transparent
  55. set file collision overwrite
  56. set incomplete discard
  57. set retry 50
  58. set send timeout 5
  59. set receive timeout 4
  60. set timer on
  61. set bell on
  62. set duplex full
  63. set prompt Kermit>
  64. set terminal type VT320
  65. set terminal wrap on
  66. set terminal bytesize 8
  67. set terminal bell audible
  68. set terminal color 0
  69. set terminal character-set ASCII
  70. set terminal code-page CP437
  71. set terminal upss DEC-MCS
  72. set terminal keypad numeric
  73. set terminal cursor underline
  74. set terminal roll on
  75. set terminal output-shift automatic
  76. set transfer character-set transparent
  77. set mode-line off
  78. set input timeout-action proceed
  79. set input default-timeout 600
  80.  
  81.             ======================================================
  82.             == Dominique == do11@calvacom.fr == Paris == France ==
  83.             ======================================================